From: LLVM Packaging Team Date: Thu, 23 Jan 2020 09:17:54 +0000 (+0000) Subject: do-not-fail-on-unexpected-pass X-Git-Tag: archive/raspbian/1%8.0.1-7+rpi1^2~80 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=292857e0ab018fac5b2a49fbb7676025d8a4ccb7;p=llvm-toolchain-8.git do-not-fail-on-unexpected-pass =================================================================== Gbp-Pq: Name do-not-fail-on-unexpected-pass.diff --- diff --git a/utils/lit/lit/Test.py b/utils/lit/lit/Test.py index a10419f33..1493e480e 100644 --- a/utils/lit/lit/Test.py +++ b/utils/lit/lit/Test.py @@ -32,7 +32,7 @@ PASS = ResultCode('PASS', False) FLAKYPASS = ResultCode('FLAKYPASS', False) XFAIL = ResultCode('XFAIL', False) FAIL = ResultCode('FAIL', True) -XPASS = ResultCode('XPASS', True) +XPASS = ResultCode('XPASS', False) UNRESOLVED = ResultCode('UNRESOLVED', True) UNSUPPORTED = ResultCode('UNSUPPORTED', False) TIMEOUT = ResultCode('TIMEOUT', True)